home *** CD-ROM | disk | FTP | other *** search
/ MacAddict 117 / MacAddict 117.dmg / Software / Utilities / USB Overdrive 10.4.5 (shareware).dmg / USB Overdrive.pkg / Contents / Resources / preupgrade < prev    next >
Encoding:
Text File  |  2006-02-15  |  370 b   |  9 lines

  1. #!/bin/sh
  2.  
  3. # quit the helper and UI if they are running
  4. /bin/ps -acx | /usr/bin/grep -i "USBOverdrive" | /usr/bin/awk '{print $1}' | /usr/bin/xargs /bin/kill
  5. /bin/ps -acx | /usr/bin/grep -i "USB Overdrive" | /usr/bin/awk '{print $1}' | /usr/bin/xargs /bin/kill
  6. /bin/ps -acx | /usr/bin/grep -i "System Pref" | /usr/bin/awk '{print $1}' | /usr/bin/xargs /bin/kill
  7.  
  8. exit 0
  9.